Dynomotion

Group: DynoMotion Message: 10226 From: Dan Date: 10/1/2014
Subject: Indicator Lights
Tom,
I am looking to add a multi color indicator light to my mill to give me some feedback. I would like to know if there are values for the following conditions that I can use in my code to turn outputs on and off. I listed the conditions I am looking to monitor below.
 
Additionally is there a way to prevent a program from stopping on an e-stop condition? I am using a PLC for several inputs at the moment and when I have an e-stop button pressed or I press the stop button in KmotionCNC all programs stop. I want it to never stop.
 
Red Light
– Any error condition,
-e-stop pressed, axis fault,
-comm error between PC and KFLOP,
-comm error with the modbus master code
 
Yellow light
– running a g-code program
 
Yellow light flashing
– current feed hold condition
- waiting for an input (M6 is set to wait for cycle start)
- paused on an M0
 
Green Light
– g-code program completion
 
Thanks,
Dan
 
 
Group: DynoMotion Message: 10233 From: Tom Kerekes Date: 10/2/2014
Subject: Re: Indicator Lights
Hi Dan,

User Thread #1 should not stop when Emergency Stop is activated.  Threads #2-7 will stop.  Could you use Thread #1for your PLC Communication and use one of the other Threads for your Initialization?

Regarding lights here are some thoughts:

Red - you would need to define the error conditions.  Most error conditions usually disable the axes so you might use that as a condition (ie ch0->Enable).

Because of the issue of the PC/Windows/USB not being real time the PC communication may legitimately stop for as much as several seconds.   There is a counter that increments each time the PC requests status to update the DRO and such.  If this counter doesn't increment for some time period you might assume that the Host PC Program is not running or communicating.  Attached is an example of how to use it.

extern int StatusRequestCounter;  // increments each time host requests status

You would need to modify the ModBus Code to globally indicate there was an error by setting a Virtual IO bit or something.

Yellow - There is a Macro (JOB_ACTIVE) that will return TRUE if GCode is currently running

Yellow Blink -

extern int CS0_StoppingState;             // emergency stop in progress, 0 = not stopping, 1=stopping coord motion, 2=stopping indep, 3=fully stopped, 4=ind stopped

can be tested for non-zero to indicate FeedHold is Active

Don't really know what you mean by M6 waiting for cycle start.  But if M6 is a C program modify it to set a global status such a a Virtual Io Bit when it is waiting.

Green

M0/M30 - I  can't think of a way to detect whether an M0 vs M30 occurred to show Green vs Blinking Yellow

HTH
Regards
TK

Group: DynoMotion Message: 10247 From: Dan Date: 10/6/2014
Subject: Re: Indicator Lights [1 Attachment]
Attachments :
    Tom,
    For tool changes I set M6 to “Wait Bit” and the bit it is set to watch is the cycle start bit. But I have also used an M0 bit before the tool change to force a pause to check parts or change tools. But I am thinking the same function that will pick up a feedhold will detect this condition.
    Wait for M6
     
     
    Dan
     
     
    Sent: Thursday, October 02, 2014 7:31 PM
    Subject: Re: [DynoMotion] Indicator Lights [1 Attachment]
     
     

    Hi Dan,

    User Thread #1 should not stop when Emergency Stop is activated.  Threads #2-7 will stop.  Could you use Thread #1for your PLC Communication and use one of the other Threads for your Initialization?

    Regarding lights here are some thoughts:

    Red - you would need to define the error conditions.  Most error conditions usually disable the axes so you might use that as a condition (ie ch0->Enable).

    Because of the issue of the PC/Windows/USB not being real time the PC communication may legitimately stop for as much as several seconds.   There is a counter that increments each time the PC requests status to update the DRO and such.  If this counter doesn't increment for some time period you might assume that the Host PC Program is not running or communicating.  Attached is an example of how to use it.

    extern int StatusRequestCounter;  // increments each time host requests status

    You would need to modify the ModBus Code to globally indicate there was an error by setting a Virtual IO bit or something.
     
    Yellow - There is a Macro (JOB_ACTIVE) that will return TRUE if GCode is currently running
     
    Yellow Blink -
     
    extern int CS0_StoppingState;             // emergency stop in progress, 0 = not stopping, 1=stopping coord motion, 2=stopping indep, 3=fully stopped, 4=ind stopped
     
    can be tested for non-zero to indicate FeedHold is Active
     
    Don't really know what you mean by M6 waiting for cycle start.  But if M6 is a C program modify it to set a global status such a a Virtual Io Bit when it is waiting.
     
    Green
     
    M0/M30 - I  can't think of a way to detect whether an M0 vs M30 occurred to show Green vs Blinking Yellow

    HTH
    Regards
    TK